home *** CD-ROM | disk | FTP | other *** search
/ Merciful 2 / Merciful - Disc 2.iso / software / i / imagefxv2.1a.lha / ImageFX / Rexx / GrabScreen.ifx < prev    next >
Text File  |  1996-03-02  |  314b  |  21 lines

  1. /*
  2.  * $VER: GrabScreen 2.0.1 (8.6.94)
  3.  *
  4.  * Arexx program for the ImageFX image processing system.
  5.  * Written by Thomas Krehbiel
  6.  *
  7.  * GrabScreen - simple screen grabbing utility.
  8.  *
  9.  */
  10.  
  11. OPTIONS RESULTS
  12.  
  13. DO FOREVER
  14.    GrabBuffer
  15.    IF rc ~= 0 THEN LEAVE
  16.    SaveBufferAs ILBM
  17.    IF rc ~= 0 THEN LEAVE
  18.    END
  19.  
  20. EXIT
  21.